home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Stickerpedia Stickerbook
/
Stickerbook.iso
/
pc
/
DATA
/
main.dxr
/
00025_Script_ [ internal ] Overlay images
< prev
next >
Wrap
Text File
|
2003-03-24
|
591b
|
35 lines
global gCurInvisibleButton
property spritenum
property pMyType
on showImage me
if (pMyType = "Previous") and (gCurInvisibleButton = "Previous") then exit
if (pMyType = "Next") and (gCurInvisibleButton = "Next") then exit
(sprite spritenum).visible = 1
end
on hideImage me
(sprite spritenum).visible = 0
end
on getPropertyDescriptionList me
set description = [:]
addProp description, #pMyType, [#comment: "Type", #format: #string, #default: "other", #range:["other", "Previous", "Next"]]
return description
end